Skip to main content

Get Supply Contract Info

Permission: "Spot trade"
UID rate limit: 5 req / second

HTTP Request

GET /v5/crypto-loan-fixed/supply-contract-info

Request Parameters

ParameterRequiredTypeComments
orderIdfalsestringSupply order ID
supplyIdfalsestringSupply contract ID
supplyCurrencyfalsestringSupply coin name
termfalsestringFixed term 7: 7 days; 14: 14 days; 30: 30 days; 90: 90 days; 180: 180 days
limitfalsestringLimit for data size per page. [1, 100]. Default: 10
cursorfalsestringCursor. Use the nextPageCursor token from the response to retrieve the next page of the result set

Response Parameters

ParameterTypeComments
listarrayObject
> annualRatestringAnnual rate for the supply
> supplyCurrencystringSupply coin
> supplyTimestringSupply timestamp
> supplyAmountstringSupply amount
> interestPaidstringPaid interest
> supplyIdstringSupply contract ID
> orderIdstringSupply order ID
> redemptionTimestringPlanned time to redeem
> penaltyIntereststringOverdue interest
> actualRedemptionTimestringActual time to redeem
> statusintegerSupply contract status 1: Supplying; 2: Redeemed
> termstringFixed term 7: 7 days; 14: 14 days; 30: 30 days; 90: 90 days; 180: 180 days
nextPageCursorstringRefer to the cursor request parameter

Request Example

GET /v5/crypto-loan-fixed/supply-contract-info?supplyCurrency=USDT HTTP/1.1
Host: api-testnet.bybit.com
X-BAPI-SIGN: XXXXXX
X-BAPI-API-KEY: XXXXXX
X-BAPI-TIMESTAMP: 1752654376532
X-BAPI-RECV-WINDOW: 5000

Response Example

{
"retCode": 0,
"retMsg": "ok",
"result": {
"list": [
{
"actualRedemptionTime": "1753087596082",
"annualRate": "0.01",
"interest": "0.13041095890410959",
"orderId": "13564",
"penaltyInterest": "0",
"redemptionTime": "1753087596082",
"status": 1,
"supplyAmount": "800",
"supplyCurrency": "USDT",
"supplyId": "567",
"supplyTime": "1752482796082",
"term": "7"
}
],
"nextPageCursor": "567"
},
"retExtInfo": {},
"time": 1752654377461
}